home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Internet / NVU 0.50 for Windows / nvu-0.50-win32-installer-full.exe / {app} / chrome / comm.jar / content / communicator / openLocation.xul < prev    next >
Encoding:
Extensible Markup Language  |  2004-03-10  |  4.3 KB  |  101 lines

  1. <?xml version="1.0"?> 
  2.  
  3. <!-- ***** BEGIN LICENSE BLOCK *****
  4.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  5.    -
  6.    - The contents of this file are subject to the Mozilla Public License Version
  7.    - 1.1 (the "License"); you may not use this file except in compliance with
  8.    - the License. You may obtain a copy of the License at
  9.    - http://www.mozilla.org/MPL/
  10.    -
  11.    - Software distributed under the License is distributed on an "AS IS" basis,
  12.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  13.    - for the specific language governing rights and limitations under the
  14.    - License.
  15.    -
  16.    - The Original Code is Mozilla.org.
  17.    -
  18.    - The Initial Developer of the Original Code is
  19.    - Netscape Communications Corporation.
  20.    - Portions created by the Initial Developer are Copyright (C) 1998-2004
  21.    - the Initial Developer. All Rights Reserved.
  22.    -
  23.    - Contributor(s):
  24.    -   Ben Goodger (ben@netscape.com)
  25.    -   Michael Lowe (michael.lowe@bigfoot.com) 
  26.    -   Daniel Glazman (glazman@disruptive-innovations.com), on behalf of Lindows.com
  27.    -
  28.    - Alternatively, the contents of this file may be used under the terms of
  29.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  30.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  31.    - in which case the provisions of the GPL or the LGPL are applicable instead
  32.    - of those above. If you wish to allow use of your version of this file only
  33.    - under the terms of either the GPL or the LGPL, and not to allow others to
  34.    - use your version of this file under the terms of the MPL, indicate your
  35.    - decision by deleting the provisions above and replace them with the notice
  36.    - and other provisions required by the LGPL or the GPL. If you do not delete
  37.    - the provisions above, a recipient may use your version of this file under
  38.    - the terms of any one of the MPL, the GPL or the LGPL.
  39.    -
  40.    - ***** END LICENSE BLOCK ***** -->
  41.  
  42. <?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
  43.  
  44. <!DOCTYPE dialog [
  45.   <!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
  46.   %brandDTD;
  47.   <!ENTITY % openDialogDTD SYSTEM "chrome://communicator/locale/openLocation.dtd" >
  48.   %openDialogDTD;
  49. ]>            
  50.  
  51. <dialog id="openLocation"
  52.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  53.         title="&caption.label;"
  54.         onload="onLoad()"
  55.         ondialogaccept="open()"
  56.         style="width: 40em;"
  57.         persist="screenX screenY"
  58.         screenX="24" screenY="24">
  59.               
  60.   <script type="application/x-javascript" src="chrome://global/content/globalOverlay.js"/>  
  61.   <script type="application/x-javascript" src="chrome://communicator/content/openLocation.js"/>
  62.   <script type="application/x-javascript" src="chrome://communicator/content/utilityOverlay.js"/>
  63.   <script type="application/x-javascript" src="chrome://navigator/content/sessionHistoryUI.js"/>
  64.   
  65.   <stringbundle id="openLocationBundle" src="chrome://communicator/locale/openLocation.properties"/>
  66.  
  67.   <hbox>
  68.     <separator orient="vertical" class="thin"/>
  69.     <vbox flex="1">
  70.       <label value="&enter.label;" control="dialog.input" accesskey="&enter.accesskey;"/>
  71.       <separator class="thin"/>
  72.  
  73.       <hbox align="center">
  74.         <textbox id="dialog.input" flex="1" type="autocomplete"
  75.                   searchSessions="history" timeout="50" maxrows="6"
  76.                   disablehistory="false" class="uri-element"
  77.                   oninput="doEnabling();">
  78.           <menupopup id="ubhist-popup" class="autocomplete-history-popup"
  79.                      popupalign="topleft" popupanchor="bottomleft"
  80.                      onpopupshowing="createUBHistoryMenu(event.target);"
  81.                      oncommand="useUBHistoryItem(event.target)"/>
  82.         </textbox>
  83.         <button label="&chooseFile.label;" accesskey="&chooseFile.accesskey;" oncommand="onChooseFile();"/>
  84.       </hbox>
  85.       <hbox align="center">
  86.         <label value="&openWhere.label;" accesskey="&openWhere.accesskey;" control="openAppList"/>
  87.         <menulist id="openAppList">
  88.           <menupopup>
  89.             <menuitem value="newTab"
  90.                       label="&newTab.label;"/>
  91.             <menuitem value="newWindow"
  92.                       label="&editNewWindow.label;"/>
  93.           </menupopup>
  94.         </menulist>
  95.         <spacer flex="1"/>
  96.       </hbox>
  97.     </vbox>
  98.   </hbox> 
  99.  
  100. </dialog>
  101.